/* Resetare și stilizare generală */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header - header centrat */
.header {
    display: flex;
    align-items: center;
    justify-content: center; /* Centrează pe orizontală */
    background-color: #be0709;
    color: white;
    padding: 20px;
    width: 100%;
    text-align: center; /* Centrează textul */
}

.header-logo {
    max-width: 100px;
    margin-right: 20px;
}

.header-titlu {
    font-size: 24px;
    text-transform: uppercase;
}

/* Container Centrat */
.text-container {
    width: 80%; /* Lățimea containerului */
    max-width: 800px; /* Lățime maximă */
    margin: 40px auto; /* Centrare verticală și orizontală */
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Stilizarea secțiunilor */
.text-container {
    padding: 10px;
}

section {
    margin-bottom: 30px; /* Spațiu între secțiuni */
    padding: 15px;
    background-color: #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #be0709;
    text-transform: uppercase;
    border-bottom: 2px solid #be0709;
    padding-bottom: 5px;
}

section p {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.8; /* Text mai aerisit */
}
/* lista de volume */



/* Stiluri pentru link-uri */
a {
    text-decoration: none; /* Elimină linia subliniată implicită */
    color: inherit; /* Păstrează culoarea textului din context */
}

/* Efectul de hover */
a:hover {
    color: #be0709;
    text-shadow: 0 0 5px rgba(190, 7, 9, 0.6);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Stare activă */
a:active {
    color: #900506;
    text-shadow: 0 0 2px rgba(190, 7, 9, 0.8);
}

/* Stare vizitată */
a:visited {
    color: #6e0508;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

/* Stiluri pentru link-urile din footer */
.footer-link {
    color: inherit; /* Păstrează culoarea contextului */
    font-weight: bold;
}

.footer-link:hover {
    color: #be0709;
}

/* Responsive Design */
@media (max-width: 768px) {
    .text-container {
        width: 90%; /* Lățime ajustată pentru dispozitive mai mici */
    }

    section {
        padding: 10px;
    }

    section h3 {
        font-size: 18px;
    }
}
